home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 1 / Eagles_Nest_Mac_Collection_Disc_1.TOAST / System & Related / UNIXNut#2 / Shells / card_20379.txt < prev    next >
Text File  |  1989-06-08  |  3KB  |  136 lines

  1. -- card: 20379 from stack: in
  2. -- bmap block id: 20624
  3. -- flags: 0000
  4. -- background id: 14368
  5. -- name: echo
  6.  
  7.  
  8. -- part 1 (field)
  9. -- low flags: 01
  10. -- high flags: 2002
  11. -- rect: left=40 top=89 right=110 bottom=120
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Command Name
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   if the optionKey is down then
  23.     go to previous card of this background
  24.   else
  25.     go to next card of this background
  26.   end if
  27. end mouseUp
  28.  
  29.  
  30. -- part 2 (field)
  31. -- low flags: 01
  32. -- high flags: 0002
  33. -- rect: left=151 top=89 right=154 bottom=439
  34. -- title width / last selected line: 0
  35. -- icon id / first selected line: 0 / 0
  36. -- text alignment: 0
  37. -- font id: 21
  38. -- text size: 12
  39. -- style flags: 0
  40. -- line height: 16
  41. -- part name: syntax
  42.  
  43.  
  44. -- part 4 (field)
  45. -- low flags: 01
  46. -- high flags: 2002
  47. -- rect: left=38 top=163 right=305 bottom=439
  48. -- title width / last selected line: 0
  49. -- icon id / first selected line: 0 / 0
  50. -- text alignment: 0
  51. -- font id: 20
  52. -- text size: 14
  53. -- style flags: 0
  54. -- line height: 18
  55. -- part name: Description
  56.  
  57.  
  58. -- part 5 (field)
  59. -- low flags: 81
  60. -- high flags: 2004
  61. -- rect: left=278 top=155 right=337 bottom=468
  62. -- title width / last selected line: 0
  63. -- icon id / first selected line: 0 / 0
  64. -- text alignment: 0
  65. -- font id: 20
  66. -- text size: 12
  67. -- style flags: 0
  68. -- line height: 16
  69. -- part name: 
  70. ----- HyperTalk script -----
  71. on mouseUp
  72.   hide card field 4
  73.   set the hilite of card button 1 to false
  74. end mouseUp
  75.  
  76.  
  77.  
  78. -- part 6 (button)
  79. -- low flags: 00
  80. -- high flags: 8003
  81. -- rect: left=107 top=280 right=302 bottom=215
  82. -- title width / last selected line: 0
  83. -- icon id / first selected line: 0 / 0
  84. -- text alignment: 1
  85. -- font id: 2
  86. -- text size: 10
  87. -- style flags: 0
  88. -- line height: 13
  89. -- part name: Escape Sequences
  90. ----- HyperTalk script -----
  91. on mouseUp
  92.   show2info 4
  93. end mouseUp
  94.  
  95.  
  96.  
  97. -- part contents for background part 7
  98. ----- text -----
  99. Bourne Shell Commands
  100.  
  101. -- part contents for card part 1
  102. ----- text -----
  103. echo
  104.  
  105. -- part contents for background part 20
  106. ----- text -----
  107. echo
  108.  
  109. -- part contents for card part 2
  110. ----- text -----
  111. echo string 
  112.  
  113. -- part contents for card part 4
  114. ----- text -----
  115. Write <string> to standard output. There are a number of  escape sequences that have special meaning in the Bourne shell.   
  116. These escapes must be quoted so they are not interpreted directly by the shell. 
  117.  
  118.  
  119. -- part contents for card part 5
  120. ----- text -----
  121. \b   backspace 
  122. \c   suppress terminating newline 
  123. \f   formfeed 
  124. \n   newline 
  125. \r   carriage return 
  126. \t   tab character
  127. \v   vertical tab 
  128. \\   backslash 
  129. \nnn  character with ASCII value 
  130.          nnn, an octal number of 1 to 
  131.          3 digits beginning with 0. 
  132.  
  133.  
  134. -- part contents for background part 9
  135. ----- text -----
  136. 16 of 43